Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rails 8 #166

Merged
merged 4 commits into from
Nov 11, 2024
Merged

rails 8 #166

merged 4 commits into from
Nov 11, 2024

Conversation

adnjoo
Copy link
Owner

@adnjoo adnjoo commented Nov 11, 2024

Upgrade DuelTasks App to Rails 8

  • Update the Gemfile - Replace the existing Rails version with gem "rails", "~> 8.0".
  • Check for Compatibility of Other Gems - Run bundle update to update Rails and all other dependencies. Review gem compatibility, as some may not yet support Rails 8. Update or replace incompatible gems as needed.
  • Upgrade Configuration Files - Run rails app:update to update configuration files. Rails will prompt you to review and accept/reject changes. Check config/application.rb and environment files for any new configurations introduced in Rails 8.
  • Address Deprecated Methods and Warnings - Review your app’s logs for deprecation warnings and adjust accordingly. This may include updating controller, model, or view methods if they've been deprecated or changed.
  • Test the App - Run your test suite to ensure everything functions as expected. Pay special attention to tests that rely on Rails internals, as these may be affected by the upgrade.
  • Migrate Database (if necessary) - Rails 8 may introduce new database features. Run rails db:migrate to ensure your schema is up-to-date.
  • Update Documentation and Readme - Finally, update any documentation, such as README files, to reflect the Rails 8 upgrade.

@adnjoo adnjoo merged commit 8f37dd2 into main Nov 11, 2024
3 checks passed
@adnjoo adnjoo deleted the rails-8 branch November 11, 2024 11:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant